home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Enter 2000 February / enter2_1.iso / REKLAMA / Pakiet firmy InsERT / dcom98.exe / RCDATA / CABINET / relnt98.txt < prev    next >
Text File  |  1999-03-28  |  27KB  |  672 lines

  1. DCOM98 1.3
  2. Release Notes
  3. Last Modified: March 15, 1998
  4.  
  5. DCOM98 provides Distributed COM support for Microsoft« Windows« 98.
  6. The DCOM wire protocol transparently provides support for reliable, 
  7. secure, and efficient communication between Component Object 
  8. Model (COM) components such as ActiveX« controls, scripts, and 
  9. Java applets residing on different machines in a LAN, a WAN, or on 
  10. the Internet. With DCOM, your application can be distributed across 
  11. locations that make the most sense to your customer and to the 
  12. application.
  13.  
  14. For more in-depth information, see the DCOM Technical overview 
  15. available on the Microsoft COM home page, 
  16. http://www.microsoft.com/com/.
  17.  
  18. Contents
  19. ========
  20. I.   New Features
  21. II.  Bug Fixes
  22. III. Known Issues
  23. IV.  Differences from DCOM on Windows NT
  24. V.   Redistribution
  25. VI.  Support & Resources
  26. VII. File List
  27.  
  28. I. New Features
  29. ---------------
  30.  
  31. Visual Studio 6.0 Process Monitoring Support
  32.  
  33. In support of Visual Studio 6.0, DCOM98 provides monitoring 
  34. information for developers to help them understand the behavior, 
  35. performance, and structure of their application. If you are using 
  36. Visual Studio Analyzer on a computer that is running Windows 98, 
  37. you should always use this version of DCOM98.
  38.  
  39. COM Internet Services
  40.  
  41. The COM Internet Services (CIS) enable clients and servers to be 
  42. connected over the Internet using COM. CIS consists of 
  43. *    A new DCOM protocol, Tunneled TCP 
  44. *    A new moniker type, OBJREF moniker 
  45. *    A new CISCNFG utility
  46.  
  47. For CIS client support in Windows 98, you must install both DCOM98 
  48. and DCOMCNFG. Then use the CISCNFG tool, which is installed when you 
  49. install the DCOM configuration utility, to change the registry key 
  50. that defines which protocol to use for remote processes. In the 
  51. Command Prompt window, enter:
  52.     ciscnfg <protocol>
  53.  
  54. Where <protocol> is:
  55. *    rpc to use RPC
  56. *    http to use HTTP
  57. *    tcp_http to try TCP first and then, if the server times out, 
  58.     to try HTTP.
  59.  
  60. The ciscnfg command with no argument provides usage 
  61. information.
  62.  
  63. No SDK updates are required to use the Tunneled TCP protocol. 
  64.  
  65. There are a few updates for OBJREF monikers. 
  66.  
  67. CreateObjrefMoniker
  68.  
  69. Creates an OBJREF moniker based on a pointer to an object.
  70. WINOLEAPI CreateObjrefMoniker(
  71.     LPUNKNOWN pUnk, //Pointer to the object
  72.     LPMONIKER *ppMk //Address of pointer to OBJREF moniker
  73. );
  74.  
  75. Parameters
  76.  
  77. pUnk
  78.  
  79. Pointer to the IUnknown interface on the object that the moniker 
  80. is to represent.
  81.  
  82. ppMk
  83.  
  84. Address of a pointer to the IMoniker interface on the OBJREF 
  85. moniker created.
  86.  
  87. Return Values
  88.  
  89. This function supports the standard return values 
  90. E_OUTOFMEMORY and E_UNEXPECTED, as well as the 
  91. following:
  92.  
  93. S_OK
  94.  
  95. The OBJREF moniker was successfully created.
  96.  
  97. Remarks
  98.  
  99. Clients use OBJREF monikers to obtain a marshaled pointer to a 
  100. running object in the serverÆs address space. 
  101. The server typically calls CreateObjrefMoniker to create an 
  102. OBJREF moniker and then calls IMoniker::GetDisplayName, and 
  103. finally releases the moniker. The display name for an OBJREF 
  104. moniker is of the form:
  105.     OBJREF:nnnnnnnn 
  106.  
  107. Where nnnnnnnn is an arbitrarily long base-64 encoding that 
  108. encapsulates the machine location, process endpoint, and interface 
  109. pointer ID (IPID) of the running object. 
  110.  
  111. The display name can then be transferred to the client as text. For 
  112. example, the display name can reside on an HTML page that the 
  113. client downloads. 
  114.  
  115. The client can pass the display name to MkParseDisplayName, 
  116. which creates an OBJREF moniker based on the display name. A 
  117. call to the monikerÆs IMoniker::BindToObject method then obtains 
  118. a marshaled pointer to the running instance on the server. 
  119. For example, a server-side COM component contained in an active 
  120. server page can create an OBJREF moniker, obtain its display 
  121. name, and write the display name to the HTML output that is sent to 
  122. the client browser. A script that runs on the client side can use the 
  123. display name to get access to the running object itself. A client-side
  124. Visual Basic script, for instance, could store the display name in a 
  125. variable called strMyName and include this line:
  126.     objMyInstance = GetObject(strMyName)
  127.  
  128. The script engine internally makes the calls to 
  129. MkParseDisplayName and IMoniker::BindToObject, and the 
  130. script can then use objMyInstance to refer directly to the running 
  131. object.
  132.  
  133. If the running object uses static IPIDs and the server process 
  134. always runs on the same computer at a well-known endpoint, the 
  135. display name of the OBJREF moniker will always be the same. In 
  136. that case, the server can store the display name instead of 
  137. calculating it each time it receives a request for the object. 
  138.  
  139. IMoniker - OBJREF Moniker Implementation
  140.  
  141. OBJREF monikers represent a reference to an object instance that 
  142. is running on an out-of-process server, either locally or remotely. 
  143. The moniker identifies the object instance and the computer the 
  144. object is running on. 
  145.  
  146. An OBJREF moniker is similar in many ways to a pointer moniker, 
  147. except that the running object is out-of-process. A client can call 
  148. IMoniker::BindToObject on an OBJREF moniker and use the 
  149. pointer it obtains to access the running object, regardless of its 
  150. location. 
  151.  
  152. An important distinction from a pointer moniker is that the display 
  153. name of an OBJREF moniker can be embedded in an HTML page, 
  154. and the running object represented by the moniker can be bound by 
  155. a client script, applet, or ActiveX control.
  156.  
  157. When to Use
  158.  
  159. The primary use for an OBJREF moniker is to obtain access to a 
  160. running object instance over the Internet. An active server page or 
  161. some other means of generating dynamic HTML content places the 
  162. display name of an OBJREF moniker in a parameter to an applet or 
  163. an ActiveX control. The code of the applet or control calls 
  164. CreateObjrefMoniker to create an OBJREF moniker based on the 
  165. display name, and it then calls IMoniker::BindToObject on the 
  166. resulting OBJREF moniker to get access to the running object 
  167. instance. The active server page then marshals a pointer to the 
  168. running object back to the pageÆs client. 
  169.  
  170. Remarks
  171.  
  172. IMoniker::BindToObject. For OBJREF monikers, the pmkToLeft 
  173. parameter must be NULL. Because the OBJREF moniker 
  174. represents a running object, no activation takes place. If the 
  175. represented object is no longer running, BindToObject fails with 
  176. E_UNEXPECTED. 
  177.  
  178. IMoniker::BindToStorage. This method obtains a marshaled 
  179. pointer to the requested interface on the storage that contains the 
  180. running object. Because the OBJREF moniker represents a running 
  181. object, no activation takes place. If the represented object is no 
  182. longer running, BindToStorage fails with E_UNEXPECTED. 
  183.  
  184. IMoniker::Reduce. This method returns 
  185. MK_S_REDUCED_TO_SELF and passes back the same moniker.
  186.  
  187. IMoniker::ComposeWith. If pmkRight is an anti-moniker, the 
  188. returned moniker is NULL. If pmkRight is a composite whose 
  189. leftmost component is an anti-moniker, the returned moniker is the 
  190. composite with the leftmost anti-moniker removed. If pmkRight is 
  191. neither an anti-moniker nor a composite moniker whose leftmost 
  192. component is an anti-moniker, then the method checks the 
  193. fOnlyIfNotGeneric parameter. If it is FALSE, the method combines 
  194. the two monikers into a generic composite; if it is TRUE, the method 
  195. sets *ppmkComposite to NULL and returns 
  196. MK_E_NEEDGENERIC.
  197.  
  198. IMoniker::Enum. This method returns S_OK and sets 
  199. ppenumMoniker to NULL. 
  200.  
  201. IMoniker::IsEqual. This method returns S_OK if *pmkOther is an 
  202. OBJREF moniker and the paths for both monikers are identical 
  203. (using a case-insensitive comparison). Otherwise, the method 
  204. returns S_FALSE.
  205.  
  206. IMoniker::Hash. This method calculates a hash value for the 
  207. moniker.
  208.  
  209. IMoniker::IsRunning. Because OBJREF monikers represent a 
  210. running object instance, this method returns TRUE unless the 
  211. object is known to be no longer running because a recent call failed. 
  212. The method ignores pmkToLeft.
  213.  
  214. IMoniker::GetTimeOfLastChange. This method returns 
  215. E_NOTIMPL.
  216.  
  217. IMoniker::Inverse. This method returns an anti-moniker (i.e., the 
  218. results of calling CreateAntiMoniker).
  219.  
  220. IMoniker::CommonPrefixWith. If the two monikers are equal, this 
  221. method returns MK_S_US and sets *ppmkPrefix to NULL. If the 
  222. other moniker is not an OBJREF moniker, this method passes both 
  223. monikers to the MonikerCommonPrefixWith function. This 
  224. function correctly handles the case where the other moniker is a 
  225. generic composite.
  226.  
  227. If there is no common prefix, this method returns MK_E_.
  228.  
  229. IMoniker::RelativePathTo. This method returns E_NOTIMPL. 
  230.  
  231. IMoniker::GetDisplayName. This method obtains the display 
  232. name for the OBJREF moniker. The display name is a 64-bit 
  233. encoding that encapsulates the machine location, process endpoint, 
  234. and interface pointer ID (IPID) of the running object. For future 
  235. compatibility, the display name is restricted to characters that can 
  236. be specified as part of a URL.
  237.  
  238. IMoniker::ParseDisplayName. If pmkToLeft is not NULL, this 
  239. method returns MK_E_SYNTAX.
  240.  
  241. IMoniker::IsSystemMoniker. This method returns S_OK and 
  242. passes back MKSYS_OBJREFMONIKER. 
  243.  
  244. Support for VB6.0 Data Types
  245.  
  246. Visual Basic« 6.0 allows Visual Basic variants to contain user-
  247. defined data structures. DCOM98 now supports remoting of these 
  248. variants.
  249.  
  250. II. Bug Fixes
  251. -------------
  252.  
  253. Race Condition When Unloading Multiple Modules
  254.  
  255. When multiple modules were unloaded simultaneously, a race 
  256. condition would occur. Depending upon the order in which the 
  257. modules were unloaded, an access violation could result. This 
  258. has been corrected in this release of DCOM98.
  259.  
  260. Desktop Unresponsive During RPC Protocol Negotiations
  261.  
  262. Earlier versions of DCOM98 did not dispatch messages while they were 
  263. negotiating RPC protocols. In certain cases, if the user launched 
  264. another application during the time that RPC protocols were being 
  265. negotiated, the machine would appear to be unresponsive. After 30 
  266. seconds, processing of messages would resume. This behavior has been 
  267. changed in the latest release of DCOM98, and applications can be 
  268. launched while RPC protocols are being negotiated. 
  269.  
  270. Desktop Unresponsive When New Application Launched
  271.  
  272. RPC creates a hidden window in the Multiple-Threaded Apartment (MTA),
  273. which is not required to dispatch messages per DCOM spec.
  274. When a user launches a new application from the desktop, 
  275. Windows sends a message to all other window handles, notifying 
  276. them of this event, and expecting a reply. Under earlier versions of 
  277. DCOM98, the hidden RPC window might not reply, and Windows would 
  278. hang. This version of DCOM985 fixes this problem, and the RPC window 
  279. no longer makes the desktop unresponsive when new applications are 
  280. launched. 
  281.  
  282. Multiple IP Addresses Heap Corruption
  283.  
  284. In certain situations, if you were running a previous version of 
  285. DCOM985 on a machine with more than one IP address, the IP address 
  286. buffer would be overrun and the heap would be corrupted. This has 
  287. been fixed in the latest release of DCOM98. 
  288.  
  289. Only First IP Address Used
  290.  
  291. If you were running a previous version of DCOM98 on a machine that 
  292. had two network adapter cards (and therefore two IP addresses, each 
  293. assigned to a different address card), DCOM98 would use only one 
  294. network adapter. In this release of DCOM985, if the first one tried 
  295. does not work, the second one will be used.
  296.  
  297. RPC Now Tries Multiple IP Addresses
  298.  
  299. When doing a remote procedure call to a machine with multiple IP 
  300. addresses, subsequent IP addresses will now be tried if connecting 
  301. to the first one fails.
  302.  
  303. File Monikers Support Additional Path Syntax
  304.  
  305. File monikers can now be created out of arguments of the form 
  306. <startdir><relativepath>, such as "C:\bug\bug\..\..\foo.jpg." Prior 
  307. to this release of DCOM98, only relative paths 
  308. (e.g., "..\..\foo.jpg") or absolute paths (e.g., "C:\foo.jpg") 
  309. were permitted.
  310.  
  311. General Protection Fault When Oleaut32.dll Unloaded
  312.  
  313. In previous versions of DCOM98, a general protection fault occurred 
  314. when Oleaut32.dll was unloaded before a call to CoUninitialize. This 
  315. would most often occur when a VB application created a control 
  316. statically linked to Oleaut32.dll, and then freed the control prior
  317. to calling CoUninitialize. This no longer causes a general 
  318. protection fault in the latest release of DCOM98.
  319.  
  320. Visual Basic Type Marshaling and Unmarshaling
  321.  
  322. The marshalling and unmarshaling of certain Visual Basic data 
  323. types has been fixed. Array parameters with a size greater than 64K 
  324. are now allowed. Structures defined using aliases to the type are 
  325. now marshaled and unmarshaled correctly.
  326.  
  327. CoCreateInstance Works with Own DNS Name
  328.  
  329. In previous versions of DCOM98, calling CoCreateInstance with the 
  330. fully qualified name of the local machine did not work. This has been 
  331. fixed in the current version of DCOM98, and CoCreateInstance now 
  332. correctly creates and instance on the local machine.
  333.  
  334. Slow Commit On Root Storage With Very Large Compound File
  335.  
  336. In previous versions of DCOM98, the commit time on a root storage 
  337. opened in STGM_TRANSACTED mode became very slow as the compound 
  338. file became very large (e.g. 400M). The internal page table 
  339. limits have been increased, and this is no longer a problem.
  340.  
  341. Exporting Objects From a Recreated MTA
  342.  
  343. In previous versions of DCOM98, a server could not export an 
  344. object from a Multi-Threaded Apartment (MTA) if this was not the 
  345. first time the MTA had been created in the process. This has been 
  346. fixed. Now, if a server creates an MTA, destroys it, and 
  347. subsequently recreates the MTA, objects will be able to be 
  348. exported from the MTA.
  349.  
  350. Multiple Instances Of Visual Basic 4 EXEs
  351.  
  352. In previous versions of DCOM98 if you started multiple instances 
  353. of the same Visual Basic 4 executable, then shut them down in any 
  354. order but LIFO (Last-In First-Out), the last exe would hang. This 
  355. was also true of E-Forms in Microsoft Exchange. This has been 
  356. fixed in the latest release of DCOM98. You may now shut down 
  357. Visual Basic 4 exes in any order.
  358.  
  359. Extended Characters in Visual Basic File Names
  360.  
  361. If you named a Visual Basic module or class using extended 
  362. characters for a given language, that file might not open on 
  363. machines configured for a different locale. This has been fixed.
  364.  
  365. Heap Memory Leak When Using IDataObject/IAdviseSink
  366.  
  367. There was a memory leak when using Uniform Data Transfer between 
  368. a data object on a local server that implements the IDataObject 
  369. interface and a client that implements IAdviseSink. When the 
  370. client used the STA model, every call would leak 32 bytes. This 
  371. problemmanifest itself as the server taking more and more time 
  372. to execute. The leak has been fixed.
  373.  
  374. III. Known Issues
  375. -----------------
  376.  
  377. Corel WordPerfect Suite 7: Installation Causes Invalid Page Fault
  378.  
  379. If you install Corel WordPerfect Suite 7 on a Windows 98 system 
  380. running DCOM98, you may get an invalid page fault in PfOd70.pfc 
  381. during installation. If this error appears, just close the error 
  382. message dialog box. Setup should continue successfully.
  383.  
  384. Microsoft Access95: Database Replication Does Not Work
  385.  
  386. If you try to replicate an Access database using Microsoft Access 
  387. 95 on machines with DCOM98 installed, you may get the following 
  388. error message: 
  389.  
  390. Microsoft Access cannot complete this operation because it 
  391. can't find or initialize the dynamic-link library Msjtrclr. 
  392.  
  393. This is a problem in Microsoft Access 95. You may work around this 
  394. issue by writing a program which uses the Access object model 
  395. rather than the replica tool, or by using the briefcase for replication. 
  396. Microsoft Access 97 is not affected by this issue. 
  397.  
  398. WordPerfect 
  399.  
  400. If you have a WordPerfect document containing an embedded 
  401. Corel spreadsheet and the spreadsheet contains another 
  402. embedded object (for example, a bitmap), you may get a warning 
  403. dialog saying youÆve lost the network connection when you close the 
  404. innermost object. There may be four or five such warnings. All 
  405. these warnings are benign. Just close them and continue.
  406.  
  407. Multiple-threaded apartment (MTA) clients that use BSTR 
  408. conversion routines may block DDE messages
  409.  
  410. Automation BSTR conversion routines (for example, BstrFromR4) 
  411. create hidden windows to facilitate the type conversion. These 
  412. windows do not service the Windows message queue. If such a 
  413. window is created from within an MTA client, DDE messages may 
  414. be blocked. The client thread has no obligation to service the 
  415. message queue under the MTA programming model. If it does not, 
  416. this top-level window causes global broadcast messages to block.
  417.  
  418. There are two ways to work around this situation. Either call the 
  419. BSTR conversion routines from within a single-threaded apartment 
  420. (STA) client, or make the clientÆs MTA thread behave like an 
  421. STA thread. (An STA thread must service the message queue.) If 
  422. the thread is blocking on a win32 handle, it must call the 
  423. MsgWaitForMultipleObjects function to simultaneously dispatch 
  424. Windows messages. 
  425.  
  426. DLL path names longer than 127 characters cause error
  427.  
  428. If you register a DLL with a path name of 128 characters or longer,
  429. the registration will succeed, but CoCreateInstance or CoGetClassObject
  430. will return an error (REGDB_E_CLASSNOTREG) when accessing an object
  431. supported by this DLL.
  432.  
  433. IV. Differences from DCOM on Windows NT
  434. ---------------------------------------
  435.  
  436. Security Capabilities of DCOM98
  437.  
  438. The core functionality and application programming interface (API) 
  439. for DCOM98 are identical in both Windows 98 and Windows NT 
  440. 4.0. However, certain capabilities related to security are different 
  441. because of the different security infrastructures of the operating 
  442. systems. Using the default security settings of the system is 
  443. recommended; it is also necessary to enable "user-level" security 
  444. on file-system shares. (See below.) 
  445.  
  446. The following services, which can be used to override default 
  447. security, are available: 
  448. *    CoInitializeSecurity 
  449. *    CoQueryAuthenticationService 
  450. *    CoQueryProxyBlanket 
  451. *    CoSetProxyBlanket 
  452. *    CoQueryClientBlanket 
  453. *    IClientSecurity Interface 
  454. *    IServerSecurity Interface 
  455.  
  456. However, certain capabilities that are part of DCOM for Windows 
  457. NT will not be available on Windows 98 because of differences 
  458. in the security infrastructure on Windows 98.
  459.  
  460. In particular, the lack of security functions in the Win32 API, such
  461. as the ability to create access control lists (ACLs), and the 
  462. AccessCheck function, as well as the lack of a security context 
  463. associated with thread and process tokens, should be taken into 
  464. account. Windows 98 does not natively support these functions or 
  465. constructs. Because of this, DCOM98 will not support impersonation
  466. (specifically, the CoImpersonateClient and CoRevertToSelf helper 
  467. functions over the IServerSecurity interface), which is based on 
  468. thread- and process-token security in Windows NT 4.0. Impersonation 
  469. is commonly used to automatically control access to restrictable 
  470. system resources such as the file system, other processes, and the 
  471. network. These resources are not restrictable on Windows 98. 
  472.  
  473. DCOM98 does, however, offer programmers various helper objects 
  474. to provide ACL and access-check functionality, which can be used 
  475. to explicitly control access by remote clients to both system and 
  476. user-defined resources or data. These helper objects are provided 
  477. by the system object CLSID_DCOMAccessControl, which implements the 
  478. IAccessControl interface.
  479.  
  480. IAccessControl should be used to manage security permissions 
  481. programmatically wherever portability between Windows 98 and 
  482. Windows NT is a concern. The CLSID_DCOMAccessControl object 
  483. is available in all releases of DCOM98 and in Windows NT 4.0 
  484. SP2 or later. For details about IAccessControl, see the Platform 
  485. SDK documentation.
  486.  
  487. Launch and Access Security 
  488.  
  489. Controlling who can launch server-class code is not supported in 
  490. DCOM98, because launching servers is not supported. 
  491. Servers/classes must already be running in order for remote clients 
  492. to connect to them and make use of their services. 
  493.  
  494. DCOM98 does support the ability to connect to already running 
  495. classes/servers. Access security is supported via the 
  496. \APPID\{.}\AccessPermissions registry key and adjusted via the 
  497. DCOMCNFG tool or during installation or setup of the server code. 
  498. Unauthenticated users will be able to use servers if you configure 
  499. the class to support unauthenticated connections (through static 
  500. configuration tools or dynamically via the CoInitializeSecurity 
  501. function). You can also build arbitrary ACLs to define which users 
  502. and groups can access specific services. 
  503.  
  504. Authentication Levels 
  505.  
  506. DCOM98 clients can make DCOM calls using any authentication 
  507. level. DCOM98 servers or clients receiving callbacks can accept 
  508. only DCOM calls using RPC_C_AUTHN_LEVEL_NONE or 
  509. RPC_C_AUTHN_LEVEL_CONNECT authentication levels.
  510.  
  511. Transports
  512.  
  513. DCOM98 supports only TCP connectivity. If you do not have the 
  514. TCP/IP protocol installed, DCOM98 will not be able to support 
  515. cross-machine COM. 
  516.  
  517. Registry Settings 
  518.  
  519. The following registry keys found under 
  520. HKEY_LOCAL_MACHINE\Software\Microsoft\OLE are established 
  521. by DCOM98: 
  522.  
  523. EnableDCOM (default value = "Y"). Enables DCOM on this machine. 
  524. When set to "N", the machine is prevented from connecting to or 
  525. activating objects on remote machines, and remote machines are 
  526. unable to connect to objects on the local machine. Setting this value 
  527. to "Y" enables either connectivity as a client to remote objects 
  528. (when EnableRemoteConnect='N', as explained below), or full 
  529. client/server connectivity (when EnableRemoteConnect='Y', as 
  530. explained below). 
  531.  
  532. EnableRemoteConnect (default value = "N"). Enables COM servers 
  533. to support remote clients. When this value is set to "Y", references 
  534. to interfaces on local objects can be passed to remote clients, and 
  535. remote clients are allowed to connect to running objects. When this 
  536. value is set to "N", this machine is allowed to connect to remote 
  537. objects but cannot act as a server: the machine is prevented from 
  538. connecting to running objects. 
  539.  
  540. In addition, the following registry key is found under 
  541. HKEY_CLASSES_ROOT\CLSID: 
  542.  
  543. {bdc67890-4fc0-11d0-a805-00aa006d2ea4}\InstalledVersion. 
  544. Contains the version number of DCOM98 in the format "a,b,c,d". 
  545. This value can be used by Internet Component Download to 
  546. determine whether DCOM98 is installed. This value is added to the 
  547. registry during setup and should not be modified. 
  548.  
  549. Using Windows 98 as a remote server host
  550.  
  551. Windows 98 can be a remote server host, with the following 
  552. caveats:
  553. *    There is no launch capability. The server process must be 
  554.     already running for a client to connect to it.
  555. *    If secure connections are needed, the server (and in the case
  556.     of callbacks, the client) must have user-level access control
  557.     with the name of a security provider set. 
  558. *    The registry value "EnableRemoteConnect" must be set to "Y".
  559.  
  560. DCOM98 has been tested most extensively using the Windows NT 
  561. Domain security provider. You may encounter problems using other 
  562. security providers.
  563.  
  564. To establish user-level access control, you must have Filesec.vxd 
  565. installed. This file is generally installed on Windows 98 machines 
  566. when you install file and print sharing.
  567.  
  568. To enable user-level access control, open the Network dialog box in 
  569. Control Panel, click the Access Control tab, check the box marked 
  570. User-level Access Control, and enter the name of your security 
  571. domain. This may affect the way you currently share directories on 
  572. the network from your computer; see the online documentation for 
  573. details. If you do not have an Access Control tab in your network 
  574. configuration control panel, you need to install a network client 
  575. service. Click the Network clients, setting up entry in the online 
  576. help index for information on installing a network client.
  577.  
  578. V. Redistribution
  579. -----------------
  580.  
  581. DCOM98 may not be redistributed. For additional information, please
  582. review the redistribution guidelines contained in the end-user 
  583. license agreement (license.txt).
  584.  
  585. VI. Support & Resources
  586. -----------------------
  587.  
  588. Paid Support
  589.  
  590. DCOM98 application development is supported by Microsoft 
  591. Technical Support. You can ask questions through your Premier 
  592. Level support contract. You can also ask questions through your 
  593. Priority Level contract or purchase individual Priority Support 
  594. incidents (essentially a one-time fee for one question). If you would 
  595. like to understand more about Microsoft's paid support options, you 
  596. can call Microsoft Support Sales at (800) 936-3500 from 6:00 a.m. 
  597. to 6:00 p.m. Pacific time, Monday through Friday, excluding 
  598. holidays. Please note that technical support is not available through 
  599. this number. Microsoft Technical Support Information is also 
  600. available on the World Wide Web at 
  601.     http://www.microsoft.com/support/. 
  602.  
  603. Free Support
  604.  
  605. Newsgroups are a great place for free peer support. As time and 
  606. resources allow, Microsoft developers, program managers, support 
  607. engineers, and test engineers visit the site to collect feedback and 
  608. answer questions or correct misperceptions. There is no guarantee 
  609. that you will receive a response from Microsoft to any newsgroup 
  610. posting. 
  611.  
  612. The following newsgroups can be used to ask questions about 
  613. DCOM98: 
  614. *    comp.os.ms-windows.programmer.ole 
  615. *    microsoft.public.win32.programmer.ole
  616.  
  617. The DCOM mailing list is another good form of free peer support. 
  618. An advantage to being on a mailing list is that this is where 
  619. Microsoft will make early announcements of information on a given 
  620. topic. Again, it is peer support, and Microsoft staff will often lurk 
  621. there, but are not guaranteed to respond to any postings. 
  622.  
  623. To learn more about the DCOM mailing list, please review our 
  624. Mailing List page, 
  625.     http://www.microsoft.com/sitebuilder/resource/mail.asp.
  626.  
  627. Providing Feedback 
  628.  
  629. Please send any comments or bug reports to the DCOM mailing list. 
  630.  
  631. Resources
  632.  
  633. You can find additional information about DCOM on the COM Home 
  634. Page at http://www.microsoft.com/com/.
  635.  
  636. VII. File List
  637. --------------------
  638.  
  639. This table lists the version numbers of files distributed with 
  640. DCOM98.
  641.  
  642. asycfilt.dll     2.40.4275.1
  643. comcat.dll     5.0.1601.1
  644. compobj.dll     2.30.200.1
  645. dllhost.exe     4.71.3328.0
  646. ole2.dll     2.30.200.0
  647. ole32.dll     4.71.3328.0
  648. oleaut32.dll     2.40.4275.1
  649. olecnv32.dll     4.71.3328.0
  650. olepro32.dll     5.0.4275.1
  651. olethk32.dll     4.71.3328.0
  652. rpcltc1.dll     4.71.3328.0
  653. rpcltc5.dll     4.71.3328.0
  654. rpcltccm.dll     4.71.3328.0
  655. rpclts5.dll     4.71.3328.0
  656. rpcltscm.dll     4.71.3328.0
  657. rpcmqcl.dll     4.71.3328.0
  658. rpcmqsvr.dll     4.71.3328.0
  659. rpcns4.dll     4.71.3328.0
  660. rpcrt4.dll     4.71.3328.0
  661. rpcss.exe     4.71.3328.0
  662. secur32.dll      4.10.0.2177
  663. stdole2.tlb      2.40.4275.1
  664. stdole32.tlb     2.10.3027.1
  665. storage.dll      2.30.200.0
  666.  
  667. This table lists the version numbers of files distributed with 
  668. DCM95CFG.
  669.  
  670. dcomcnfg.exe     5.00.1603.1
  671. ciscnfg.exe      4.71.2618.0
  672.